home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / PowerPlant / UGetMultipleFiles 1.4 / Exhibit.h < prev    next >
Encoding:
Text File  |  1997-03-10  |  774 b   |  26 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. //    Exhibit.h
  3. // ===========================================================================
  4.  
  5. #pragma once
  6. #include <LApplication.h>
  7.  
  8. class    Exhibit : public LApplication {
  9. public:
  10.                         Exhibit();        // constructor registers all PPobs
  11.     virtual             ~Exhibit();        // stub destructor
  12.     
  13.         // this overriding function performs application functions
  14.         
  15.     virtual Boolean        ObeyCommand(CommandT inCommand, void* ioParam);    
  16.     
  17.         // this overriding function returns the status of menu items
  18.         
  19.     virtual void        FindCommandStatus(CommandT inCommand,
  20.                             Boolean &outEnabled, Boolean &outUsesMark,
  21.                             Char16 &outMark, Str255 outName);
  22.  
  23. protected:
  24.  
  25.     virtual void        StartUp();        // overriding startup functions
  26. };